home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / uploadskrip.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  70 lines

  1. #
  2. # This script was written by John Lampe...j_lampe@bellsouth.net 
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(11746);
  10.  script_version ("$Revision: 1.4 $");
  11.  script_cve_id("CAN-2001-0938");
  12.  
  13.  
  14.  name["english"] = "AspUpload vulnerability";
  15.  name["francais"] = "AspUpload vulnerability";
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19. The AspUpload software resides on this server. 
  20.  
  21. Some versions of this software are vulnerable to remote exploit.
  22.  
  23. Solution : Update the software at http://www.aspupload.com 
  24.  
  25. Risk factor : High";
  26.  
  27.  
  28.  script_description(english:desc["english"]);
  29.  
  30.  summary["english"] = "Checks for the AspUpload software";
  31.  
  32.  script_summary(english:summary["english"]);
  33.  
  34.  script_category(ACT_ATTACK);
  35.  
  36.  
  37.  script_copyright(english:"This script is Copyright (C) 2003 John Lampe",
  38.         francais:"Ce script est Copyright (C) 2003 John Lampe");
  39.  family["english"] = "CGI abuses";
  40.  family["francais"] = "Abus de CGI";
  41.  script_family(english:family["english"], francais:family["francais"]);
  42.  script_dependencie("find_service.nes", "no404.nasl");
  43.  script_require_ports("Services/www", 80);
  44.  exit(0);
  45. }
  46.  
  47. #
  48. # The script code starts here
  49. #
  50.  
  51. include("http_func.inc");
  52. include("http_keepalive.inc");
  53.  
  54. port = get_http_port(default:80);
  55. if(!get_port_state(port))exit(0);
  56. if(!can_host_asp(port:port))exit(0);
  57.  
  58.  
  59. foreach dir (cgi_dirs())
  60. {
  61.     req = http_get(item:dir + "/Test11.asp", port:port);
  62.     res = http_keepalive_send_recv(port:port, data:req);
  63.     if( res == NULL ) exit(0);
  64.     if (egrep(pattern:".*UploadScript11\.asp.*", string:r)) 
  65.         {
  66.             security_hole(port);
  67.             exit(0);
  68.         }
  69. }
  70.